home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / dosutil / locks.doc < prev    next >
Text File  |  1987-07-17  |  2KB  |  32 lines

  1. The four programs included here can be used to control the state
  2. of the toggle keys from a batch file. For example, they can be used to
  3. insure that caplock is on for a program that doesn't recognize lower
  4. case, or to set the numeric pad to the desired state after rebooting,
  5. despite what DOS may do. Caplock.com included here is not the PC mag program
  6. that decides that you don't really want caps on and turns it off when you
  7. use the shift key. These programs simply turn the flags on or off. THe
  8. syntax is as follows:
  9.  
  10. NUMLOCK [ON|OFF]           Controls the number lock state
  11. CAPLOCK [ON|OFF]              "         caps    "    "
  12. SCRLOCK [ON|OFF]              "         scroll  "    "
  13. INSLOCK [ON|OFF]              "         insert  "    "
  14.  
  15. The programs are very simple minded. Anything in the third character of the
  16. command tail that when masked by 0FH results in 0EH will set the state ON.
  17. Anything else will set the state OFF. For those who don't speak hexadecimal,
  18. this means that the characters ".", ">", "N", "n", "^" and "~" will turn it
  19. on if they are where the "N" is in the following line:
  20.  
  21. caplock oN
  22.  
  23. If you put two spaces following the word caplock, it will turn off. I don't
  24. try to parse the line, I just check the character location. It took less time
  25. to write the programs than it did to write this explanation. You are getting
  26. what you paid for here.
  27.  
  28. Otherwise these are pretty handy programs. I think you will find them useful.
  29.  
  30. Ken Norris
  31.  
  32.